SQLSetPos

 

The SQLSetPos function is a SQL function that replaces the current data field to a specified location.

 

void @SQLSetPos(int id, int pos);

 

Parameters

int id : Access number connected by SQLConnect

int pos : Cursor position to set

 

Return Value

None

 

Example

@SQLSetPos($AddrID, pos);

Description : Change the position value of the current data field to the pos position. (The size of pos is DWORD)

 

Related Helps

SQLConnect()

SQLCreateTable()

SQLDelete()

SQLDisconnect()

SQLExecute()

SQLFirst()

SQLGetPos()

SQLInsert()

SQLLast()

SQLNext()

SQLPrepare()

SQLPrev()

SQLSelect()

SQLUpdate()